body{
    background: #000;
     width: 100%;
     height: 100%;
}
/*main*/
/*wavy txt*/
#wavebox{
    width: 100vw;
    color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    letter-spacing: 0.6rem;
}
    .wave span{
        display: inline-block;
        font-size: clamp(2rem, -0.143rem + 5.714vw, 5rem);
        animation: wave 2s ease-in-out infinite;
    }
        .wave span:nth-child(1){
            animation-delay: 0;
        }
                .wave span:nth-child(2){
            animation-delay: 0.2s;
        }
                .wave span:nth-child(3){
            animation-delay: 0.4s;
        }
                .wave span:nth-child(4){
            animation-delay: 0;
        }
                .wave span:nth-child(5){
            animation-delay: 0.2s;
        }
                .wave span:nth-child(6){
            animation-delay: 0.4s;
        }
    @keyframes wave{
        0%, 100%{
            transform: translateY(0);
        }
        50%{
            transform: translateY(-10px);
        }
    }


/*backgroundz*/
#backies{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0);
}

    .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    }

    .layer-1 {
    background-image: url('../img/chrono1.png');
    opacity: 0.5;
    animation: moveVertical 160s linear infinite;
    }
    .layer-2 {
    background-image: url('../img/chrono2.png');
    opacity: 0.7;
    animation: moveHorizontal 200s linear infinite;
    }
    .layer-3 {
    background-image: url('../img/chrono3.png');
    opacity: 0.5;
    animation: moveDiagonal 90s linear infinite;
    }

        @keyframes moveVertical {
        from { background-position: 0 0; }
        to   { background-position: 0 -512px; }
        }

        @keyframes moveHorizontal {
        from { background-position: 0 0; }
        to   { background-position: -1024px 512px; }
        }

        @keyframes moveDiagonal {
        from { background-position: 0 0; }
        to   { background-position: -1024px -512px; }
        }

/*other txt*/
#text-support{
    width: 100vw;
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.1rem;
}
p{
    width: 50vw;
    font-size: 0.9em;
    text-shadow: 0 3px 0 var(--main-black-rgb);
}

.purps{
    color: var(--purple)
}

.pixelated{
    image-rendering: pixelated;
}

/*icons*/
#showcase {
  width: 100%;
  min-height: 100%;
  position: relative;
}

    .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 2rem;
    padding: 2rem;
    }

        .icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        user-select: none;
        -webkit-user-select: none;
        padding: 0.75rem;
        transition: transform 0.8s;
        filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.8));
        }

            .icon:hover {
            transform: scale(1.1);
            }

            .icon img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            }

            .icon-label {
            font-size: 0.85rem;
            text-align: center;
            color: white;
            cursor: grab;
            font-family: digitaltxt;
            }

            .icon-label:active {
            cursor: grabbing;
            }

        .icon.dragging {
        cursor: grabbing;
        opacity: 0.8;
        transition: ease-in-out;
        }